Re: Creating a Ladino spell-checker and including it in OS projects

2022-06-17 Thread Dan Kenigsberg
On Wed, Jun 15, 2022 at 10:23:47AM +0300, Gabor Szabo wrote:
> On Mon, Jun 13, 2022 at 9:00 AM Dan Kenigsberg 
> wrote:
> 
> > On Sun, Jun 12, 2022 at 04:24:27PM +0300, Gabor Szabo wrote:
> > > Hi Dan,
> > >
> > >
> > > On Tue, Jun 7, 2022 at 11:18 PM Dan Kenigsberg  > >
> > > wrote:
> > >
> > > > On Wed, Jun 01, 2022 at 06:47:41AM +0300, Gabor Szabo wrote:
> > > > > Hi,
> > > > >
> > > > > I've been working on an online Ladino (Judeo-Espanyol) dictionary
> > > > > https://diksionaryo.szabgab.com/ The code is open source the
> > content is
> > > > > CC BY-SA 4.0  https://creativecommons.org/licenses/by-sa/4.0/
> > > > > All linked from the About page.
> > > > > Along with the creation of the translation I also have a (growing)
> > list
> > > > of
> > > > > ladino words.
> > > > >
> > > > > I would like to make this available as a spell checker in various
> > Open
> > > > > Source tools.
> > > > > E.g. Firefox, Chromium, LibreOffice etc.
> > > > > I wrote about it a few weeks ago
> > > > > https://szabgab.com/add-spellchecker-to-various-applications.html
> > but I
> > > > am
> > > > > still unclear what and how to do.
> > > > >
> > > > > I started to generate a pair of files that resemble the format of
> > hspell,
> > > > > but I don't know how to really test them and in any case they don't
> > seem
> > > > to
> > > > > work well.
> > > > > I also don't know how to distribute what I already have and how to
> > make
> > > > it
> > > > > included in those projects.
> > > > >
> > > > > Anyone here has experience with spell-checkers?
> > > > > Could anyone help me in the project or at least point me in the right
> > > > > direction?
> > > >
> > > > Well, if I were you, I'd start by creating a github repository with
> > your
> > > > code and a tagged version of your artifacts, these .aff and .dic files
> > > > used by hunspell.

I think that if you do so ^^^ you'd have a stable URL to share.

> > > >
> > >
> > > It is being generated now on every push:
> > > https://github.com/szabgab/ladino-diksionaryo-generated/
> >
> > Thanks for the URL. But where are the artifacts? They probably hide in
> > plain sight... Can you provide a URL to the .aff/.dic files?
> >
> 
> Oh well, GitHub can be tricky sometimes :)
> (I think this is the direct link to download the zip of the two files:
> https://github.com/szabgab/ladino-diksionaryo-generated/suites/6938585306/artifacts/270273527
> )
> 
> Manually:
> Visit the project repo:
> https://github.com/szabgab/ladino-diksionaryo-generated/
> click on "Actions"
> then on the job that created the artifact (in this case it is called CI)
> There you'll have the artifacts of the project
> e.g. This is the direct link to a recent build
> https://github.com/szabgab/ladino-diksionaryo-generated/actions/runs/2500028854
> 
> If you now click on "hunspell" it will download the two files in a zip.
> 
> AFAIK the artifacts are removed after a few weeks so these links will be
> gone, but the desription above should still work.
> 
> 
> 
> >
> > >
> > > I can put on some tags if you think they are important for some reason,
> > but
> > > I don't have specific release points.
> > > Every change in the dictionary triggers the re-build of the whole web
> > site
> > > and the two files as well.
> > >
> > >
> > >
> > > > This would let anyone with high-enough motivation the ability to test
> > it
> > > > on their own machine (I may volunteer).
> > > >
> > >
> > > I'd really like to know how do you (or some else) test it.
> >
> > `hunspell -D` shows where you can drop the files; then `hunspell -d
> > language` would lets me spell-check a text, say a random page from
> > https://lad.wikipedia.org.
> >
> >
> Thanks. And yeah, the ladino version of vikipedia is quite bad - as I am
> told - as it is written mostly by spanish speakers
> who include a lot of words from modern spanish instead of using Ladino.
> That's another project to work on to fix that :)

I can say that it works well on my box. Nice!

I suppose that the coverage should improve. For example, I think you can
add Astronomiya to the lexicon. But I cannot judge Ladino correctness in
any way...

In hspell it took us several years of pain-stakingly spellchecking
Wikipedia pages to reach good coverage. But please do not let this
discourage you. Helping Ladino survive is a noble cause to follow.


___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Creating a Ladino spell-checker and including it in OS projects

2022-06-12 Thread Dan Kenigsberg
On Sun, Jun 12, 2022 at 04:24:27PM +0300, Gabor Szabo wrote:
> Hi Dan,
> 
> 
> On Tue, Jun 7, 2022 at 11:18 PM Dan Kenigsberg 
> wrote:
> 
> > On Wed, Jun 01, 2022 at 06:47:41AM +0300, Gabor Szabo wrote:
> > > Hi,
> > >
> > > I've been working on an online Ladino (Judeo-Espanyol) dictionary
> > > https://diksionaryo.szabgab.com/ The code is open source the content is
> > > CC BY-SA 4.0  https://creativecommons.org/licenses/by-sa/4.0/
> > > All linked from the About page.
> > > Along with the creation of the translation I also have a (growing) list
> > of
> > > ladino words.
> > >
> > > I would like to make this available as a spell checker in various Open
> > > Source tools.
> > > E.g. Firefox, Chromium, LibreOffice etc.
> > > I wrote about it a few weeks ago
> > > https://szabgab.com/add-spellchecker-to-various-applications.html but I
> > am
> > > still unclear what and how to do.
> > >
> > > I started to generate a pair of files that resemble the format of hspell,
> > > but I don't know how to really test them and in any case they don't seem
> > to
> > > work well.
> > > I also don't know how to distribute what I already have and how to make
> > it
> > > included in those projects.
> > >
> > > Anyone here has experience with spell-checkers?
> > > Could anyone help me in the project or at least point me in the right
> > > direction?
> >
> > Well, if I were you, I'd start by creating a github repository with your
> > code and a tagged version of your artifacts, these .aff and .dic files
> > used by hunspell.
> >
> 
> It is being generated now on every push:
> https://github.com/szabgab/ladino-diksionaryo-generated/

Thanks for the URL. But where are the artifacts? They probably hide in
plain sight... Can you provide a URL to the .aff/.dic files?

> 
> I can put on some tags if you think they are important for some reason, but
> I don't have specific release points.
> Every change in the dictionary triggers the re-build of the whole web site
> and the two files as well.
> 
> 
> 
> > This would let anyone with high-enough motivation the ability to test it
> > on their own machine (I may volunteer).
> >
> 
> I'd really like to know how do you (or some else) test it.

`hunspell -D` shows where you can drop the files; then `hunspell -d
language` would lets me spell-check a text, say a random page from
https://lad.wikipedia.org.


Regards,
Dan.


___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Creating a Ladino spell-checker and including it in OS projects

2022-06-07 Thread Dan Kenigsberg
On Wed, Jun 01, 2022 at 06:47:41AM +0300, Gabor Szabo wrote:
> Hi,
> 
> I've been working on an online Ladino (Judeo-Espanyol) dictionary
> https://diksionaryo.szabgab.com/ The code is open source the content is
> CC BY-SA 4.0  https://creativecommons.org/licenses/by-sa/4.0/
> All linked from the About page.
> Along with the creation of the translation I also have a (growing) list of
> ladino words.
> 
> I would like to make this available as a spell checker in various Open
> Source tools.
> E.g. Firefox, Chromium, LibreOffice etc.
> I wrote about it a few weeks ago
> https://szabgab.com/add-spellchecker-to-various-applications.html but I am
> still unclear what and how to do.
> 
> I started to generate a pair of files that resemble the format of hspell,
> but I don't know how to really test them and in any case they don't seem to
> work well.
> I also don't know how to distribute what I already have and how to make it
> included in those projects.
> 
> Anyone here has experience with spell-checkers?
> Could anyone help me in the project or at least point me in the right
> direction?

Well, if I were you, I'd start by creating a github repository with your
code and a tagged version of your artifacts, these .aff and .dic files
used by hunspell.

This would let anyone with high-enough motivation the ability to test it
on their own machine (I may volunteer).

Next, I'm afraid, comes specialized packaging for different environments.
In hspell I added Makefile targets for hunspell-he.rpm and for Mozilla
xpi. The former is good enough for most application on
Fedora/CentOS/RHEL. Then you could propose the rpm to Fedora;
or the xpi to Mozilla; or hope that someone else does it for you for
OSes and applications you are not familiar with.

It's a long process, but when it works it's quite satisfying.

Good luck,
Dan.


___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


[JOB] oVirt community manager

2016-10-06 Thread Dan Kenigsberg
Red Hat is looking for someone to manage the community of oVirt.org, one of the
Open Source Linux-based projects that it supports.

Work requires passion for free software, independece, technical know-how, human
communication skills (mostly English), and quite a bit of travel around the
globe.

Job description:
https://careers-redhat.icims.com/jobs/53632/program-manager---ovirt-community/job


BTW, we have other openings. Take a look at
https://careers-redhat.icims.com/jobs/search?ss=1&searchLocation=13269--Raanana

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Python question - first call is slower?

2012-06-20 Thread Dan Kenigsberg
On Wed, Jun 20, 2012 at 09:20:04AM +0300, Nadav Har'El wrote:
> On Wed, Jun 20, 2012, Meir Kriheli wrote about "Re: Python question - first 
> call is slower?":
> > > I considered, and discredited, the following attempted "explanations":
> >...
> > >   its code gets done in 6 milliseconds; It's not a 12 millisecond pause
> > >   and then the rest of the function finishes in 2ms.
> > >
> > 
> > Yeah, compiles to bytecode.
> 
> As far as I understand, the code is "compiled to bytecode" when it is
> imported, *not* when it is first run, so it doesn't explain why the
> first run of a function is slower. If you think it's otherwise, please
> let me know.
> 
> > Nitpick: CPython doesn't (the one you're referring to as Python), other
> > implementations may and will (PyPy, Jython, etc)
> 
> Yes, I'm talking about the "python" executable, which I guess is
> CPython.
> 
> > > 3. "If class A imports B which imports C which imports D, some of these
> > >   classes are only read when the code is actually used for the first
> > >   time". Again, I couldn't find any evidence that this is true in Python
> > >   (unlike, e.g., Java). An "import" would read the whole class hierarchy
> > > into
> > >   memory. Right?
> > A module is loaded only once (see also: sys.modules)
> 
> Yes, this I know. But at first I thought maybe it is loaded lazily
> somehow, so some things are loaded only when a function from the module
> is actually run. But I can find no evidence of that - every bit of
> documentation I can find suggests that the module, and every module it
> refers to, recursively, are fully loaded at the time of the "import" of
> the top module.
> 

I think Meir's point is that if your code eventually calls an stdlib function
like

def f():
import foo
return foo.bar()

the first call to the function would require a tedious load of foo.py,
which would be avoided on the second call.

I guess that `strace -eopen python` would reveal plenty of open(2)s during the
first computation.

Dan.

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Unicode in C

2012-03-13 Thread Dan Kenigsberg
On Mon, Mar 12, 2012 at 03:05:56PM +0200, Nadav Har'El wrote:
> Hi, I have a question that I was sort of sad that I couldn't readily
> find the answer to...
> 
> Let's say I want to create a C API (a C library), with functions which
> take strings as arguments. What am I supposed to use if I want these strings
> to be in any language? Obviously the answer is "Unicode", but that
> doesn't really answer the question... How is Unicode used in C?
> 
> As far as I can see, there are two major approaches to this problem.
> 
> One approach, used in the Win32 C APIs on MS-Windows, and also in Java and
> other languages, is to use "wide characters" - characters of 16 or 32 bit
> size, and strings are an array of such characters.
> 
> The second approach, proposed by Plan 9, is to use UTF-8.
> 
> I personally like better the UTF-8 approach, because it naturally fits
> with C's "char *" type and with Linux's system calls (which take char*,
> not any sort of wide characters), but I'm completely unsure that this is
> what users actually want. If not, then I wonder, why?
> 
> Some background on this question: People have been complaining for years
> that Hspell, and in particular the libhspell functions, use ISO-8859-8
> instead of "unicode". But if one wants to add unicode to libhspell, what
> should it be? UTF-8? Wide chars (UTF-16 or UTF-32)?

I think this background is most important. The real questions is the motivation
of the people complaining. If it is something beyond "yuck, 8bit is old!", we
should ask them which encoding is good for their use case.

When I compiled hspell for a (paying!) customer who used Windows, I wrote my own
wrapper functions to convert Windows' wide chars to hspell's 8bit (and vice
versa). I bet that if there's anyone using libhspell in a Unix-like environment,
he would prefer utf-8.

In my opinion, it is nice to fit to modern standards of your major target
environment (read: utf8), but not necessary to cater to all encodings.
Would you even consider supplying a hspell_iso88598_to_utf8 function to help
your client app do the conversion itself? I'm not sure this is our bees wax.

However this is only me and my bets. If anyone needs another encoding, let him
speak now or use his own iconv calls forever.


Dan.


___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: libreoffice+hebrew nikud

2012-02-26 Thread Dan Kenigsberg
On Sun, Feb 26, 2012 at 05:28:57PM +0200, Dotan Cohen wrote:
> On Sun, Feb 26, 2012 at 12:11, Nadav Har'El  wrote:
> > On Sun, Feb 26, 2012, Arie Skliarouk wrote about "libreoffice+hebrew nikud":
> >> I am concerned on the nikud part, e.g. how well libreoffice supports it.
> >> Googling shows rendering issues. The https://bugs.freedesktop.org is down
> >
> > In my experience, the quality of the niqqud rendering directly depends
> > on the font. For example, the free Culmus fonts, notably David and Frank
> > Reuhl, show niqqud very well. Note that Culmus's Frank Reuhl used to
> > have problems rendering niqqud, until the last Culmus release fixed
> > these problems.
> >
> > One problem I do have with niqqud - and maybe other people can suggest a
> > solution - is how to type them. What I usually do is to cut-and-paste
> > words with niqqud from other texts (or an online dictionary). I never
> > figured out how to set up a keyboard mapping or something to
> > conveniently type niqqud.
> >
> 
> Like I said earlier, use the Lyx keyboard layout, not to be confused
> with the LyX document processor. I use it with LibreOffice with no
> issues at all. Shall I attach sample documents?

ditto. I've been using the "lyx" layout ever since Tzafrir had incorporated it
to xkb (but not very often). They are almost sensible (you cannot ask for more
when it comes to Hebrew niqqud)... Dagesh is AltGr-Daleth, Segol is
AltGr-Samech. No mnemonics for the Hatafim, I'm afraid. So
/usr/share/X11/xkb/symbols/il comes handy when I need to type them.

Dan.

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Hebrew spell-checking in OpenOffice

2010-11-02 Thread Dan Kenigsberg
On Tue, Nov 02, 2010 at 01:25:18PM +0200, Nadav Har'El wrote:
> On Tue, Nov 02, 2010, Lior Kaplan wrote about "Re: Hebrew spell-checking in 
> OpenOffice":
> > Known issue, and reported at
> > http://www.openoffice.org/issues/show_bug.cgi?id=99796
> 
> Thanks for the pointer.
> I'll vote for the issue (if I can be of any other help, please let me know).
> 
> > > The second issue is the correction suggestions for spelling errors. All
> > > the suggestions indeed appear to be valid words, but their order is
> > > terrible - it appears little or no attention was paid to trying to provide
> 
> Dan checked, and it appears that the suboptimal (to be gentle) corrections 
> indeed are not specific to OpenOffice, and happen already in hunspell. e.g.,
> try
> 
>   $ echo עברי | hunspell -d he_IL
> 
> Looking at the hunspell documentation, I see that there are TRY, REP and MAP
> keywords in the dictionary which can be used to specify letters that sound
> the same, and so on. We already used "TRY", but not any of the others - and
> I guess we need to. Does anyone on this list have any experience with those?

It did not get into hspell 1.1, but if you append the following lines to
hunspell's .aff, you get some "soundlikes" (Fedora and RHEL6 have it though)
I did not find a means to convey the lightweight of yod and waw in thunspell(4).
It sounds as a reasonable feature request, though.

MAP 10
MAP ךכח
MAP םמ
MAP ןנ
MAP ףפ
MAP ץצ
MAP כק
MAP אע # for English
MAP גה # for Russian
MAP צס # for Arabic
MAP חכר # for French

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


[Job Offer] Red Hat Israel needs a Lab Admin

2010-09-29 Thread Dan Kenigsberg
Do you want to administer RHEL6 for the people who develop it?
https://careers.redhat.com/ext/detail?redhat6071 might be a job for you.

Besides of that opening, Red Hat Israel is looking for bright software
engineers, with deep Linux/Unix system knowledge (RHCE is a plus), preferably
with Python experience. Red Hat is always interested in exceptional kernel
experts, too.

You may send CVs to me off-list (but I cannot promise an answer to each CV).

Regards,

Dan.

--

Lab Admin
Job ID: 6071
Job Category: Software Engineering
Location: Raanana, Israel

 
Job Summary

Engineering Operations is currently seeking a System Administrator
with 3-5 years experience to support our engineering lab in Ra'anana.
The primary role is to maintain the development and test environment
for the Red Hat Enterprise Virtualization (RHEV) product line.

Special Job Conditions: Must be able to move and install computer
equipment weighing approximately 25 Kilograms.

Primary Responsibilities:
* Maintain all aspects of a lab of over 200 servers
* Research and purchase lab hardaware
* Install server and storage equipment
* Configure networks
* Build virtualization environments
* Troubleshoot system and network issues
* Provide hardware, OS, and application support for engineers (or "Work closely
* with developers to assist in their daily work")
* Collaborate on projects with a geographically diverse team of admins

 
Required Skills & Experience:

* Windows server administration including Active Directory
* Administration of other operating systems such as Linux, Solaris
* Common infrastructure protocols: DNS, DHCP, LDAP, Kerberos, NIS
* Virtualization technologies, especially RHEV
* SAN and NAS technologies such as Fibre Channel, iSCSI, NFS, RAID
* Networking techologies from the physical layer through STP, VLANs,
and complex routing
* Database administration with Microsoft SQL Server, PostgreSQL
* Ability to write scripts in some administrative language (shell/Python/Perl)
* Ability to read and interpret English language technical documents.
* Ability to speak business level English.
* Ability to work effectively and efficiently with minimal supervision.

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Announce: Hspell 1.1

2010-01-01 Thread Dan Kenigsberg
Who said anything about *few* rules? They are many, and are complex, and have
gazillion of exceptions. But they exist, and putting them into effect in
hspell's inflection scripts is doable, albeit requiring a lot of meticulous
work. The classical references for niqqud are Luah HaShemot HaShalem and Luah
HaP`alim HaShalem by Shaul Bakali. These tables include all the rules and all
the exceptions needed to add the correct niqqud to Hebrew words.

On Fri, Jan 01, 2010 at 02:02:21AM +0200, Ely Levy wrote:
> I can only talk from my own experience, I couldn't find any good source for
> rules about nikud and grammar in a simple form.
> I did find some gpled work list with nikud, and I think I even talked to the
> people in mila.
> But no one could provide that few rules you are talking about.
> (And I'm still confused about the difference between old and modern
> grammar/nikud...)
> 
> Ely
> 
> On Thu, Dec 31, 2009 at 4:11 PM, Nadav Har'El wrote:
> 
> > On Thu, Dec 31, 2009, E L wrote about "Re: Announce: Hspell 1.1":
> > > I think the main problem is what need to be done and not the man power to
> > > program it.
> > > If someone know of what are the rules grammar or nikud checkers should
> > > follow I'm sure it won't be a big
> > > deal programing one
> >
> > I beg to differ.
> >
> > First of all, most of the needed knowledge already exists, published in
> > numerous papers and books, and demonstrated by several pieces of commercial
> > software. One doesn't need to come with advanced knowledge of the topic,
> > any more than I had to be some spell-checking expert before I started
> > Hspell.
> > All one needs is a willingness to learn, and of course the resourcefulness
> > to put it into good use.
> >
> > Second, while the work on Hspell had a lot of very interesting theoretical
> > sides and problems to solve (in linguistics, language, compression, etc.),
> > most of the work was actually the mundane and almost endless task of making
> > lists of words (a task which you can see, still isn't done 10 years after
> > starting the project). For niqqud checking, there is also a lot of similar
> > mundane work that needs to be done (writing the right niqqud for each
> > word),
> > and that takes a lot of time.
> > For grammar checking, it depends what you call grammar: If you also want
> > to include semantics, and not just grammar - like Prof. Uzzi Ornan did in
> > his text-to-speech and niqqud research (and product) - there's also tons
> > of work that needs to be done on creating classes of nouns, listing
> > arguments
> > of verbs, and so on. I guess you can start with just grammar, though, and
> > in this case, you're right - it should be doable without too much data
> > collection - so maybe this is indeed a good project to start with.
> >
> > This is all very interesting work. Unfortunately, I do not see myself
> > starting it in the near future. If anyone is interested in taking a shot
> > at it, I'd love to advise - please contact me and/or Dan privately.
> >
> > Nadav.
> >
> > --
> > Nadav Har'El| Thursday, Dec 31 2009, 14 Tevet
> > 5770
> > n...@math.technion.ac.il
> > |-
> > Phone +972-523-790466, ICQ 13349191 |I couldn't afford a cool signature, so
> > I
> > http://nadav.harel.org.il   |just got this one.
> >

> ___
> Linux-il mailing list
> Linux-il@cs.huji.ac.il
> http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Announce: Hspell 1.1

2009-12-31 Thread Dan Kenigsberg
On Thu, Dec 31, 2009 at 03:31:59PM +0200, Ely Levy wrote:
> I think the main problem is what need to be done and not the man power to
> program it.
> If someone know of what are the rules grammar or nikud checkers should
> follow I'm sure it won't be a big
> deal programing one

For grammar you might be right. However, the case for niqqud is very different.
The rules for niqqud are very clear and strict (on most cases). Applying them to
all verb and noun inflection is mostly hard work.

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Announce: Hspell 1.1

2009-12-31 Thread Dan Kenigsberg
On Thu, Dec 31, 2009 at 02:46:37PM +0200, Ely Levy wrote:
> Cool:)
> Any news on grammar checking/nikud checking?
> 

No, we are constantly too busy releasing Hspell versions to deal with that :)

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Disabling sudo logging very specific command

2009-10-10 Thread Dan Kenigsberg
On Thu, Oct 01, 2009 at 10:45:41AM +1000, Amos Shapira wrote:
> Hello,
> 
> We have a script which runs in a loop and contains a command like:
> 
> for ONE_USER in $USER_GROUP
> {
> sudo $BINDIR/getmail $ONE_USER $TOPDIR
> }
> 
> This script is executed by a non-root user and generates tons of
> output in /var/log/secure (this is an old Fedora Core system,
> eventually I'll get around to replace it with CentOS 5).
> 
> Is there a way to limit sudo NOT to log just this specific case - i.e.
> only allow this user to execute $BINDIR/getmail with two parameters,
> don't ask for a password but also don't log ONLY execution which was
> permitted by this line?
> 
> The script also calls sudo with another specific command which I'd
> like to do the same for.
> 
> So far I didn't find a way to do that.

you should be able to do that with adding

Cmnd_Alias BLA = /path/to/getmail * *
youruser ALL=NOPASSWD: BLA
Defaults!BLA !syslog

to /etc/sudoers.

(untested, unwarranted)

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: Hebrew Text Alignment Under Fedora 10

2009-03-24 Thread Dan Kenigsberg
On Tue, Mar 24, 2009 at 01:43:47PM +0200, Aharon Schkolnik wrote:
> Hi.
> 
> I have just got Hebrew input working under Fedora 10.
> Now I see that Hebrew is aligned on the left margin as follows:
> 
> אבגד
> הוז
> 
> Specifically, I need it to work with kmail (used to send this message).

No idea about kmail, but for text viewing you may

# yum install bidiv

and 

$ bidiv yourtext | less

> 
> Under Fedora 8 I had Hebrew being aligned on the right margin.
> 
> Any ideas ?
> 
> TIA.
> 
> -- 
>   The day is short, and the work is great,|  Aharon Schkolnik
>   and the laborers are lazy, and the reward   |  
>   is great, and the Master of the house is|  aschkol...@gmail.com
>   impatient. - Ethics Of The Fathers Ch. 2|  054 3344135
> 
> 
> ___
> Linux-il mailing list
> Linux-il@cs.huji.ac.il
> http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

___
Linux-il mailing list
Linux-il@cs.huji.ac.il
http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il


Re: brctl aborting?

2008-03-25 Thread Dan Kenigsberg
On Thu, Mar 13, 2008 at 03:59:35PM +0200, Dan Kenigsberg wrote:
> On Thu, Mar 13, 2008 at 01:16:46PM +0200, Dan Shimshoni wrote:
> > Dan,
> > 
> >   - It could be that you encountered (or "discovered") a kernel BUG
> > with the locking mechansim of bridge devices.
> > 
> >   - What I would suggest is the following:
> > 
> >   - First, If you can give more details  (kernel version / disto) it would 
> > help.
> > 
> >   - Second, if you can post this mailing list the scripts you are
> > running (for adding/deleting the tun device) and describe
> > the environment (how you exactly start and configure the tun devices,
> > etc). that cause this crash it will really help.
> > 
> > I, for one , will happily try to test it on two Linux machines to see
> > if it crash , and I believe that there will be others.
> 
> Thanks. But it's rather hard to reproduce.
> It happens quite often in our complex environment, but it did not appear when 
> I
> tried to brctl addif/delif in from simple scripts. If I come up with something
> that's simple to post and reproduces the problem, you'll be the first to know.

Oops, I did not live up to my promise. Redhat were first to know.
Well, I am not completely sure it is the same thing, but games with tunnel
interfaces and bridges can cause RHEL 5 kernel to panic.

https://bugzilla.redhat.com/show_bug.cgi?id=438629

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Kernel question - what happens when a shell script is the interpreter for another shell script?

2008-03-23 Thread Dan Kenigsberg
On Thu, Mar 20, 2008 at 07:25:19PM +0200, Shachar Shemesh wrote:
> Valery Reznic wrote:
> 
> >> Below is important part
> ><
> >   If  the  header  of  a  file  isn?t recognized
> >(the attempted execve(2)
> >   returned ENOEXEC), these functions will 
> >execute  the  shell  (/bin/sh)
> >   with  the  path  of  the  file as its first
> >argument.  (If this attempt
> >   fails, no further searching is done.)
> >  
> Yes, I do believe you nailed it.
> 
> After Matan's email I tried running the set with strace, and realized it 
> was, indeed, a user space thing. As I need that for a (user space) 
> program that intercepts the actual kernel calls (and sometimes emulates 
> them), I will assume that the governing rule is that a program can have 
> just one shell script in its interpreter path.
> 
> And now to a slightly related subject - does anyone know how I can 
> change the command line that appears in "ps" for a program after it has 
> been run? I know it should be possible, because I vaguely remember 
> programs that receive sensitive information in command line and try to 
> immediately hide it, but merely writing to the argv addresses did not 
> bring the desired results, and /proc/self/cmdline seems to be read only.

I happenned to stumble on this question recently.

prctl(2) has PR_SET_NAME. An even simpler solution, that may work on non-Linux
too and may be good enough, is softlink.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: brctl aborting?

2008-03-13 Thread Dan Kenigsberg
On Thu, Mar 13, 2008 at 01:16:46PM +0200, Dan Shimshoni wrote:
> Dan,
> 
>   - It could be that you encountered (or "discovered") a kernel BUG
> with the locking mechansim of bridge devices.
> 
>   - What I would suggest is the following:
> 
>   - First, If you can give more details  (kernel version / disto) it would 
> help.
> 
>   - Second, if you can post this mailing list the scripts you are
> running (for adding/deleting the tun device) and describe
> the environment (how you exactly start and configure the tun devices,
> etc). that cause this crash it will really help.
> 
> I, for one , will happily try to test it on two Linux machines to see
> if it crash , and I believe that there will be others.

Thanks. But it's rather hard to reproduce.
It happens quite often in our complex environment, but it did not appear when I
tried to brctl addif/delif in from simple scripts. If I come up with something
that's simple to post and reproduces the problem, you'll be the first to know.

I'm using CentOS 5, 2.6.18-8.el5 x86_64 kernel, with bridge-utils-1.1-2.

Do someone here care to take a look at net/bridge/br_if.c's br_add_if()?
I cannot really read kernel code; please enlighten me. I see there

list_add_rcu(&p->list, &br->port_list);

but I did not spot where br->port_list is locked. I worry because

/**
 * list_add_rcu - add a new entry to rcu-protected list
 * @new: new entry to be added
 * @head: list head to add it after
 *
 * Insert a new entry after the specified head.
 * This is good for implementing stacks.
 *
 * The caller must take whatever precautions are necessary
 * (such as holding appropriate locks) to avoid racing
 * with another list-mutation primitive, such as list_add_rcu()
 * or list_del_rcu(), running on this same list.
 * However, it is perfectly legal to run concurrently with
 * the _rcu list-traversal primitives, such as
 * list_for_each_entry_rcu().
 */

Thanks,
   Dan.

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: brctl aborting?

2008-03-13 Thread Dan Kenigsberg
On Thu, Mar 13, 2008 at 11:14:04AM +, Amos Shapira wrote:
> On Thu, Mar 13, 2008 at 8:43 AM, Dan Kenigsberg <[EMAIL PROTECTED]>
> wrote:
> 
> > On Thu, Mar 13, 2008 at 02:08:05PM +1100, Amos Shapira wrote:
> > > On Thu, Mar 13, 2008 at 3:29 AM, Dan Kenigsberg
> > > <[EMAIL PROTECTED]> wrote:
> > > >  Thanks for the idea. What could cause SIGSEGV on brctl?
> > > >  My dmesg has a lot of noise, but no segfault visible.
> > > >
> > > >  Mar  9 04:53:49 w kernel: device if_11 entered promiscuous mode
> > > >  Mar  9 04:53:49 w kernel: sw0: port 5(if_11) entering learning state
> > > >  Mar  9 04:53:49 w kernel: sw0: topology change detected, propagating
> > >
> > > Enable core dumps ("ulimit -c unlimited").
> >
> > Did that. No traces of a segfault.
> 
> 
> What do you mean? Have you tried to run brctl without getting a core dump
> when it bombed?

I mean that I recreated the error with -c unlimited, and no core was dumped.
I don't know what THAT means.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: brctl aborting?

2008-03-13 Thread Dan Kenigsberg
On Thu, Mar 13, 2008 at 02:08:05PM +1100, Amos Shapira wrote:
> On Thu, Mar 13, 2008 at 3:29 AM, Dan Kenigsberg
> <[EMAIL PROTECTED]> wrote:
> >  Thanks for the idea. What could cause SIGSEGV on brctl?
> >  My dmesg has a lot of noise, but no segfault visible.
> >
> >  Mar  9 04:53:49 w kernel: device if_11 entered promiscuous mode
> >  Mar  9 04:53:49 w kernel: sw0: port 5(if_11) entering learning state
> >  Mar  9 04:53:49 w kernel: sw0: topology change detected, propagating
> 
> Enable core dumps ("ulimit -c unlimited").

Did that. No traces of a segfault.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: brctl aborting?

2008-03-12 Thread Dan Kenigsberg
On Wed, Mar 12, 2008 at 02:37:44PM +0200, Gilad Ben-Yossef wrote:
> Dan Kenigsberg wrote:
> >Hi List,
> >
> >I'm creating tun interfaces, deleting them, and connecting them to a 
> >bridge (not
> >necessarily in that order).
> >
> >Occasionally, brctl aborts in what looks like a call to abort(2). I get
> >
> >/bin/sh: line 1: 30963 Aborted sudo /usr/sbin/brctl show 
> >sw0
> >
> >Now what may be causing it? Might it be the fact that in the same time 
> >other
> >processes are playing with brctl {addif,delif} ? 
> >
> >A quick peek at the brctl code show no reference to abort(), so it probably
> >comes from a deeper place. Any guess from where?
> >
> 
> It means brctl caught a SIGSEGV.
> 
> Run "dmesg" after one of these incidents. I have a feeling the results 
> will be interesting.
> 

Thanks for the idea. What could cause SIGSEGV on brctl?
My dmesg has a lot of noise, but no segfault visible.

Mar  9 04:53:49 w kernel: device if_11 entered promiscuous mode
Mar  9 04:53:49 w kernel: sw0: port 5(if_11) entering learning state
Mar  9 04:53:49 w kernel: sw0: topology change detected, propagating


-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



brctl aborting?

2008-03-12 Thread Dan Kenigsberg
Hi List,

I'm creating tun interfaces, deleting them, and connecting them to a bridge (not
necessarily in that order).

Occasionally, brctl aborts in what looks like a call to abort(2). I get

/bin/sh: line 1: 30963 Aborted sudo /usr/sbin/brctl show sw0

Now what may be causing it? Might it be the fact that in the same time other
processes are playing with brctl {addif,delif} ? 

A quick peek at the brctl code show no reference to abort(), so it probably
comes from a deeper place. Any guess from where?

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: UTF-8 in PHP?

2008-02-28 Thread Dan Kenigsberg
On Thu, Feb 28, 2008 at 12:34:42PM +0200, Dotan Cohen wrote:
> I'm trying to make a regex that will change kaf, mem, nun, pe, and
> tzadik to their final form if they are at the end of a word. On the
> php mailing list, we came to this regex, which works to replace a
> letter only at the end of a word, and it works well:
> 
> $text=preg_replace('/\b([^\s]+)a\b.*/U', '$1A', $text);
> 
> This replaces a final "a" with "A", as a test case. It works.
> 
> However, when I change the "a" and "A" to Hebrew, it does not:
> 
> $text=preg_replace('/\b([^\s]+)כ\b.*/U', '$1ך', $text); // Lo Oved
> 
> You can see two test cases and the code here:
> http://gibberish.co.il/test.html
> http://gibberish.co.il/test2.html
> 
> Why should the regex above not work? Is it a UTF-8 problem? Can anyone
> elaborate? PHP is Israeli homebrew, so I would expect that it is used
> on quite a few Israeli sites.

I'm no php expert, but it seems that \b does not catch a UTF-8 Hebrew word
boundary - it's probably implemented byte-by-byte.

when you do
 $text = preg_replace('/([^\s]+)כ($|\s)/', '$1ך$2', $text);
the non-final kaf is converted.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: RTL in plaintext mails

2008-02-25 Thread Dan Kenigsberg
On Mon, Feb 25, 2008 at 02:14:15AM +0200, Oren Held wrote:
> Hi,
> 
> I feel dumb.. Am I missing something, or is it just impossible to send 
> Right-To-Left mails in plaintext?
> Must I use HTML mails when I write in Hebrew?

Tzafrir mentioned it off-hand, but I'd like to stress Nadav Har'El's bidiv. I
use it to page throgh Hebrew mails. It uses fribidi, and it is smart enough to
guess the right justification for each paragraph. It also does a fine job at 
guessing the input encoding of the text, and outputing in the correct encoding
according to your locale.

Dan.

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: running 64 bit linux on the desktop

2007-12-24 Thread Dan Kenigsberg
On Mon, Dec 24, 2007 at 10:07:39PM +0200, Tom Rosenfeld wrote:
> Hi,
> 
> I recently started working at a new firm that is using CentOS 4.5 64 bit on
> the desktop.
> 
> We were having trouble with some standard programs and we just realized that
> they are related to the 64 vs. 32 bit issues.
> 
> For example the flash plugin to firefox installed fine, but would not work.
> The best workaround I have found is to install the 32 bit firefox instead
> and then all the plugins work fine.

In order to use 32 bit plugins on a 64 bit firefox you may try
http://gwenole.beauchesne.info/en/projects/nspluginwrapper . Works for me.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Fedora 7 --> Fedora 8

2007-12-06 Thread Dan Kenigsberg
Thanks for your replies. They did not really help, as my problem magically
disappeared after a couple of days (and after merging seemingly unrelated
rpmnew files)

For ther record:

On Tue, Dec 04, 2007 at 09:31:39AM +0200, Noam Meltzer wrote:
> Hi,
> Please check that the process of your X server is not Xgl.
> Had the same problem problem with kubuntu gutsy.

I don't have Xgl,

> A. what's the output of:
> $ rpm -qa --queryformat "%{name}-%{version}-%{release}.%{arch}\n" | grep
> fc7

There are some of those, but so is the fact with
http://download.fedora.redhat.com/pub/fedora/linux/releases/8/Everything/x86_64/os/Packages/

> B. What's your hardware/Xorg configuration? Are you using compiz &
> friends?

I'm not using any fancy visual effects (and no compiz). just plain gnome.

> C. Are you using gnome or KDE? If you create a new user and login into
> the new account - are you hitting the same problem?
> 

I did not manage to check this.

Thanks for your attemps!

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Fedora 7 --> Fedora 8

2007-12-03 Thread Dan Kenigsberg
Dear List,

For reasons best kept private, I upgraded by Fedora 7 box to Fedora 8 (via yum
update). After the dependency hassle was solved, I'm left with an extremely
slow-responsive GUI. Using ssh seems fine, but in xterm it takes almost a
second for a typed key to show up.

The odd thing, is that when I reboot with an old F-7 kernel this problem
disappears (but another one, regarding ypbind/autofs emerges, never mind that).

Any idea why it happens and how it is solved?

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: 2 questions regarding hebrew

2007-12-02 Thread Dan Kenigsberg

On Fri, Nov 30, 2007 at 02:24:01PM +0200, Hetz Ben Hamo wrote:
> Hi,
> 
> I have 2 questions:
> 
> 1. Does anyone have any good recommendation for a good text editor
> that supports HTML highlighting, Auto completion and *Good* Hebrew
> support? I have tried few already, but when it comes to Hebrew text
> embedding inside a file (like writing Hebrew paragraphs in PHP or
> HTML) it starting to be messy, specially when trying to editing the
> Hebrew written text.

Under a very specific definition for "Good", VIM has all of this. The only
problem (beside this being VIM) is that you are expected to :set rl explicitly
in order to flip the direction of lines. The bonus is, that VIM's own input
method (:set hk) translates keys to Hebrew, so there's no need to solve your
Q.2. The attached file makes things a little easier if put in
~/.vim/plugin/hebrew.vim .

> 
> 2. VNC question: I'm connecting to my Linux through VNC (the client is
> running on XP with Real VNC), but when I'm trying to use setxkb, I get
> "XKB extenstion not present on 1:0". Is there a way to add this
> extension to VNC so I can type in Hebrew?
> 

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901


-- Attached file included as plaintext by Listar --

" keyboard mappings that support Hebrew
" Thanks to Tzafrir Cohen and Nadav Har'el

set allowrevins
map:set invrl invhk
map!  :set invrl invhk
cmap  
map:set invri invhk
map!  :set invri invhk
cmap  

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Petition to ask MainConcept to release MainActor as Open Source software

2007-10-02 Thread Dan Kenigsberg
On Tue, Oct 02, 2007 at 07:14:07PM +0200, Nadav Har'El wrote:
> [1] On the first computer I ever used, the Commodore 64, a diskette held
> around 160 KB (if I remember correctly). My new hard disk will contain
> 320 GB, the equivalent of 2 million (!!) such diskettes.

But boot time was shorter!

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: sendsms: problems with new encoding

2007-09-22 Thread Dan Kenigsberg
> 
> I have some problems with the new sendsms. For orange it sends but
> after i send i get output  which I strip here:
>   
> 
> 
> 
> 
> 
> 

It does not tell me much. It seems that you get an unexpected respose from the
Orange site. Does it happen every time? If you send me the whole thing I might
be able to check it out.

> For cellcom it doesn't send. Here is the message I get:
> Trying to connect to ICQ network.done!
> You sent SMS message to +97252335
> SrvMessage with MessageType: ack_offline
> SrvMessage with MessageType: sms_expired
> Exiting.
> 
> I know you mentioned that it needs activation on windows client. I
> tried in miranda and i  t said to activate but when i went to the page
> they refer i get some empty page with few lines. nothing to activate.

Try doing it with ICQ's own client (not Miranda, the real thing). Try sending an
SMS from there, and follow the links. It worked for me.

> Did you managed to send to cellcom or pelephone?

Yes.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: sendsms: problems with new encoding

2007-09-21 Thread Dan Kenigsberg
On Fri, Sep 21, 2007 at 01:49:56PM +0200, Arnon Sharlin wrote:
> So simple. I thought the UTF-8 was an orange requirement. I modified the
> script according to your suggestion, and it now works.

It is Orange's requirement. The line you just added converts iso-8859-8 to utf8
which is expected by both Orange and ICQ (and practically everyone, except the
Hspell command line tool :-P )

> Thanks for your help with this issue, and for maintaining the script.

You're welcome, again. BTW, I learned from my logs that the script has become
less popular. Any idea why?

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: sendsms: problems with new encoding

2007-09-21 Thread Dan Kenigsberg
On Thu, Sep 20, 2007 at 09:58:55PM +0200, Arnon Sharlin wrote:
> Hi Dan, and thank you for updating the script. I am now able to send hebrew

You're welcome.

> text messages through orange's site, using sendsms. When I run sendsms with
> a hebrew message from the command line everything works fine. I have a
> problem though, with 2 scripts that uses sendsms:
> 

I did not look into your real problem, but you can simply uncomment line #392

   $args{message}=encode("utf8", decode("iso-8859-8", $args{message}));

If you expect iso-8859-8 Hebrew for Orange.

You should add a similar line for ICQ, though. Somwhere before line #626.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



New unofficial version for SendSMS

2007-09-14 Thread Dan Kenigsberg
Shana Tova to you all!

As you may know, Orange changed their site AGAIN circa August 21st.
I've made some crude adjustments to the SendSMS script to support the new site.

Another change is that the script now expects Hebrew in UTF-8.

The biggest change in the script is due to a developer who prefers to remain
anonymous. That developer added proper support for ICQ (usable to send SMSs to
all three big cellphone  providers) via the vICQ Perl module.

This means that before you can play with
 http://www.cs.technion.ac.il/~danken/sendsms
you have to download
 http://www.cs.technion.ac.il/~danken/vICQ.pm
and put it in something like ~/lib/perl5/site_perl/5.8.6/Net/vICQ.pm .
Then, edit sendsms so the line
 BEGIN {push @INC, ("/home/danken/lib/perl5/site_perl/5.8.6")};
makes sense in your system.

Note that you may need to enable SMS-sending in you ICQ account, which AFAIK can
only be done with their official Windows client.

Note further that the script is given under the GPL, and without any warranty
whatsoever.

I hope that you find this extra pain useful!

May we all enjoy a peaceful year, with no interface changes,

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: sendsms issues with Orange's site

2007-09-02 Thread Dan Kenigsberg
On Sun, Sep 02, 2007 at 12:41:44PM -, Arnon Sharlin wrote:
> Hi All
> For a few weeks now, I haven't been able to send SMS through orange site.
> 
> I'm using Dan's latest version:
> 3.12beta (unofficial!): April 1, 2007
> 
> The error message I'm getting is:
> Error: unexpected response from Orange's site on SMS form.
> 
> Does anybody have a solution for this problem ?
> 
> thanks,
> arnon

It seems that in Aug 21st something has change in Orange's site.
Sadly, I do not expect to have the time to update the script soon.

Hopefully, since the source is out there, someone would do that for me (hint,
hint). On the mean while I am using patched version of vICQ.pm to send smss via
ICQ. (For months now, I did not find the time to pacage and release it)

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Walla in Firefox

2007-07-16 Thread Dan Kenigsberg
I vaguely recall that years back, I had slightly better luck using their English
front-end (I think it was mail.walla.com)

On Mon, Jul 16, 2007 at 10:06:52PM +0300, Dotan Cohen wrote:
> Can anybnody send mail inWalla Mail with firefox? All I get is a red
> line when I hit Send. Thanks in advance.
> 
> Dotan Cohen

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Virtualization software on Linux

2007-07-09 Thread Dan Kenigsberg
On Mon, Jul 09, 2007 at 08:40:08AM +0300, Geoffrey S. Mendelson wrote:
> On Mon, Jul 09, 2007 at 08:15:14AM +0300, Eran Sandler wrote:
> > Qemu
> 
> Qemu is much to slow for running Windows under Linux. It's a great product
> if you need a vitrual X86 processor, for example, I did some software
> development for a handheld device using it. It also runs DOS programs
> quite well if you have ones that don't run well on a real computer
> such as games.

According to my experience, qemu (with kqemu installed) under Linux on ThinkPad
R40 was as fast as a friend's bare metal when running WinXP, IE, Word, and the
occasional VisualDev. I guess that with modern systems which have the vt cpu
extension, kvm+qemu would be a free, open, and competitive choice.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: ipw2200 reloads automatically

2007-04-20 Thread Dan Kenigsberg
On Fri, Apr 20, 2007 at 08:55:34AM +0300, Oron Peled wrote:
> On Thursday, 19 �‘April 2007 10:16, Dan Kenigsberg wrote:
> > I have here FC4 on my laptop, and I had its wifi nicely installed -
> > up untill yesterday. Now, even when I want to take it down with
> > rmmod ipw2200
> > and take its network interface down, something reloads it again
> > (and take the interface up with it, dhclient included).
> 
> It's modprobe called by the kernel. You must have something like:
>   alias eth1 ipw2200

Yep, you got this one right! And commenting this out stopped the reloading.
Thanks!

However, my riddle is still alive since nothing has touched /etc/modprobe.conf
since Feb 3rd. And this current nonsense started only yesterday. It seems that
something decided to access my /dev/eth1 without my request. Odd.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: ipw2200 reloads automatically

2007-04-19 Thread Dan Kenigsberg
On Thu, Apr 19, 2007 at 03:35:11PM +0300, Oded Arbel wrote:
> chkconfig NetworkManager off

Thanks, but I don't use NetworkManager.

I even when down to runlevel 1, and the modules still got reloaded after I
removed it..

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



ipw2200 reloads automatically

2007-04-19 Thread Dan Kenigsberg
What have I done?

I have here FC4 on my laptop, and I had its wifi nicely installed - up untill
yesterday. Now, even when I want to take it down with
rmmod ipw2200
and take its network interface down, something reloads it again (and take the
interface up with it, dhclient included).

/var/log/acpid and /var/log/message did not prove to be too useful.
Anyone here has an idea what loads the module back?

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



April 1st: SendSMS works with the new Orange site

2007-04-01 Thread Dan Kenigsberg
Hi,

You probably have noticed that Nadav's SendSMS stopped working with Orange's
site (and with ICQ's site much before that).

Since I suspect that Nadav would be offline for a few days, and since it's such
a lovely date today, I would like to release a new version of SendSMS that works
with the new Orange site:

http://www.cs.technion.ac.il/~danken/sendsms

I am a lot less thorough than Nadav, so please consider this as a beta version.
Patches are welcome. The above link will die when Nadav updates the main trunk.

The script is released under the GPL, of course.

Enjoy,

Dan.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: latex \colorbox and hebrew text

2007-03-24 Thread Dan Kenigsberg
On Sat, Mar 24, 2007 at 11:58:16AM -0400, Tzafrir Cohen wrote:
> On Mon, Mar 19, 2007 at 04:47:16PM +0200, Micha Feigin wrote:
> > I seem to have some problems using \colorbox from the xcolor package (or the
> > color package) with hebrew text in latex.
> > 
> > The solution I found was:
> > 
> > \L{\colorbox{gray!30}{\R{}}}
> > 
> > which seems rather awkward (the need to add \L and \R). Without these the 
> > text
> > doesn't show up. Is this a know problem, and is there a more elegant way to
> > solve this?
> 
> The problem is that th color is added with some postscript commands in
> some sort of post-processing. 
> 
> Normally you have:
> 
>   \colorbox{color}{some text}
> 
> translated to:
> 
>   some text
> 
> where  and  are postscript directives.
> 
> In a "Hebrew" context you get:
> 
>   \colorbox{color}{HEBREW TEXT}
> 
> will become (on paper)
> 
>   TXET WERBEH
> 
> Thus the trick you use guarantees the correct order of postscript
> directives around Hebrew text.

.. which, in a perfect world, would be done by a babel-aware colorbox.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: extract attachments from mail messages

2007-03-20 Thread Dan Kenigsberg
.. or python: http://www.python.org/doc/2.3.5/lib/email-unpack.txt

On Tue, Mar 20, 2007 at 05:04:32PM +0200, Jonathan Ben Avraham wrote:
> Hi Nahum,
> You will have to write your own program in PHP or using Perl's MIME 
> module. The learning curve is not trivial.
> 
>  - yba

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



[OFFTOPIC] [HEBREW] donate old computers to TAU

2007-03-07 Thread Dan Kenigsberg
I was asked to forward this request for donation of old computers to a Tel-Aviv
University project, aimed to teach computer usage to populations in need. This
is not quite related to the list; nonetheless it seems like a good cause to put
your old computers to. I suspect, though, that the organizers would have
prefered Windows-installed machines...

>From: Adi Koll 
>Sent: Tuesday, March 06, 2007 3:50 PM
>Subject: תרומת מחשבים ישנים לתוכנית אוניברסיטה בעם

שמי הוא ד"ר עדי קול ואני מנהלת התוכנית "אוניברסיטה בעם" באוניברסיטת תל אביב. 
ה"אוניברסיטה בעם" היא תוכנית חדשה ומקורית שהחלה לפעול בשנת תשס"ו באוניברסיטת תל 
אביב, במטרה לפתוח את שערי האוניברסיטה בפני אוכלוסיות נזקקות שנגישותן, ולעיתים 
אף שאיפתן, ללימודים אקדמיים מוגבלת. המרצים ב"אוניברסיטה בעם" הם סטודנטים מן 
המניין באוניברסיטת תל אביב אשר זוכים לקרדיט אקדמי עבור עבודתם, מתוך אמונה כי 
במפגש עם אוכלוסיות נזקקות יש ערך לימודי ותרבותי חשוב המוביל להעצמה דו סטרית.

 

בשנת הלימודים הנוכחית מציעה ה"אוניברסיטה בעם" שלושה קורסי מבוא במשפטים, רפואה, 
ומנהל עסקים לכ-300 תלמידים, בני נוער ומבוגרים, בהם נשים מוכות מבת ים; נגמלים 
מסמים מאור יהודה; עבריינים בשיקום מנתניה; נערות אתיופיות מנתניה; נערים בסיכון 
מחדרה ומרמלה; ונוער עבריין מגוש דן. התלמידים מגיעים לאוניברסיטה פעם בשבוע 
בהסעות מאורגנות וזוכים לארוחת ערב קלה בהגיעם, וכל זאת ללא תשלום. 



בימים אלו אנו מבקשים להרחיב את פעילותנו ולהעביר קורס בסיסי בשימושי מחשב לתלמידי 
התוכנית. חלק מתלמידנו מעידים כי מעולם לא זכו לעבוד על מחשב וחלקם אף לא זכה 
לראות מחשב מימיו. לשם כך גייסנו סטודנטים למדעי המחשב באוניברסיטת תל אביב אשר 
ישמשו מדריכי הקורס והוקצתה עבורנו כיתה באוניברסיטה וכל שנותר לנו הוא למצוא 
מחשבים פשוטים אשר ניתן יהיה ללמד באמצעותם את תוכנות עיבוד התמלילים ושימוש 
באינטרנט.



לכן, אם אתם או מישהו ממכריכם עתידים לשדרג את המחשב הביתי או נמצאים ברשותכם 
מחשבים ישנים שאינם בשימוש, אודה לכם מאד באם תסכימו לתרום אותם לתוכנית 
אוניברסיטה בעם לצורף פרויקט חשוב זה (אנא העבירו את המייל הזה לכל מי שנראה לכם 
מתאים).

החברה הישראלית המודרנית הינה מתוחכמת יותר מבחינה אינטלקטואלית, מתקדמת יותר 
מבחינה טכנולוגית וחזקה יותר מבחינה כלכלית, וככזאת היא סגורה לאנשים שמבחינת 
כישוריהם והמשאבים האישיים העומדים לרשותם אינם עומדים בסטנדרטים של השכלה 
ומיומנויות חברתיות. התוכנית אוניברסיטה בעם מבקשת לסייע לאותן אוכלוסיות לצמצם את 
הפערים הטכנולוגיים ולהשתלב בחברה.



בתודה מראש

ד"ר עדי קול

מנהלת התוכנית "אוניברסיטה בעם"

www.unibaam.tau.ac.il

  

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Quickest way to list content of directory(s)

2007-02-12 Thread Dan Kenigsberg
On Mon, Feb 12, 2007 at 09:17:59PM +0200, Maxim Veksler wrote:
> On 2/12/07, Gilboa Davara <[EMAIL PROTECTED]> wrote:
> >On Mon, 2007-02-12 at 15:56 +0200, Maxim Veksler wrote:
> >> Hi,
> >>
> >> Someone at work told me that doing "du -a |grep " is faster
> >> then "find |grep ". I've measured, it doesn't looks quite
> >> so. It did OTOH got me wondering what's the quickest way to answer if
> >> file existed in a hierarchy of directories.
> >
> >What about $ file -name  ?
> >
> 
> Real situation: I've just done a major build which created 5th level
> directories hierarchy (debug/Main/Engine/Simple/he). Now I wish to run
> some quick shell test to see if anywhere inside all of this directory
> jungle a file named libHelpTest.a was build.

If you're using zsh, you only need
$ ls **/libHelpTest.a

(I wonder whether Nadav has already sent this answer to the list...)

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: connect to remote smb printer via cups

2007-01-20 Thread Dan Kenigsberg
On Sat, Jan 20, 2007 at 11:08:37AM +0200, ik wrote:
> I had a similar problem, and it turned out that foomatic crashes the
> printer drivers every time cups wishes to start actually do something
> with the job (that is not a queue).
> 
> Look at /tmp/ and see if you have a foomatic.error or something like that.
> 
> BTW, the only way I could resolve the issue, is to stop using foomatic.
> 

Thanks for the tip, but I see no traces of a crashed foomatic.
Any ohter thread of idea?

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



connect to remote smb printer via cups

2007-01-19 Thread Dan Kenigsberg
Dear List,

I fail to set up SMB printers on my FC6 box.

system-config-printer seems to add the printer well, and reports that the
printer is accessible.

I can connect and print to the remote printer with smbclient and with
/usr/lib/cups/backend/smb. I can send jobs to cups with lpr.

But something on the middle does not work: cupsd does not seem to execute the
backend, and the job stalls forever.

Any ideas where is my problem or how I can debug this?
All I learned from stracing cupsd is that it does not exec the smb backend (I
don't know whether it should).

Thanks,

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Renaming RPM packages - upgrade problems

2007-01-15 Thread Dan Kenigsberg
Ugly hack: have a newer (but empty) version of A require B.

On Mon, Jan 15, 2007 at 12:13:45PM +0200, Lior Kaplan wrote:
> Hi,
> 
> Yet another RPM problem...
> 
> I have an RPM install (lets call it A). I want another RPM to replaces it
> (lets call it B).
> 
> I've tried the Debian way [0] for this situation:
> RPM B provides A and obseletes A in the same time.
> 
> Which is similar to what I found on fedora [1].
> 
> The idea is that while the removal of A, it sees another RPM provides it,
> and thus runs the preun and postun as in an upgrade and not as in a
> complete removal.
> 
> Saddly, this doesn't happen, and A pre/post uninstall scripts run for a
> complete removal.
> 
> Any other suggestions? I didn't find helpful info in Google or at
> http://fedora.redhat.com/docs/drafts/rpm-guide-en/
> 
> Thanks.
> 
> 
> [0]
> http://www.debian.org/doc/manuals/developers-reference/ch-pkgs.en.html#s5.9.3
> [1]
> http://fedora.redhat.com/docs/drafts/rpm-guide-en/ch-dependencies.html#id2952568
> -- 
> Lior Kaplan
 
-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Sweet revenge [was: FireFox and Bank haPoalim]

2006-12-23 Thread Dan Kenigsberg
Haifa University's HighLearn system (used to disseminate course material) did
not even let Firefox log in. If one do log in (using IE), one finds a host of
complex ASP-generated pages with frames and security checks and whatnot.

Guess what? http://online.haifa.ac.il/ now features the note

לא מומלץ לעדכן את גרסת הדפדפן Internet Explorer לגירסה 7; בימים אלו
נבדקת תאימות מעטפת HighLearn לגירסה זו.

Such problems would not plague Yaniv Hamo's equivalent system
(shameless plug)
http://webcourse.cs.technion.ac.il/236990

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: scam ?

2006-12-13 Thread Dan Kenigsberg
Sendsms is still alive and kicking - but only with the Orange site.

On Mon, Dec 11, 2006 at 09:25:33PM +0200, Diego Iastrubni wrote:
> 
> Wait, that script is working again...? It stopped working 2 years ago!

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Orange SMS

2006-11-19 Thread Dan Kenigsberg
It has no GUI, but Nadav's
http://nadav.harel.org.il/software/sendsms/sendsms
still works well with Orange (not with Cellcom/Pelephone).

If a GUI is a must, you may improve on the following hack (written only because
I'm at home having fun with the flu)

===

#!/usr/bin/wish

button .send -text "Send SMS" -command {
puts stdout "$phone $sender $message";
exec ~/bin/sendsms "$phone" "$sender" "$message";
}
label .phonel -text "Phone:"
entry .phone -textvariable phone
label .senderl -text "Sender name:"
entry .sender -textvariable sender
label .messagel -text "Message:"
entry .message -textvariable message

pack .phonel .phone .senderl .sender .messagel .message .send


On Sun, Nov 19, 2006 at 02:00:34PM +0200, Amichai Rotman wrote:
> Hi all,
> 
> I need so GUI solution to send messages inside the Orange network.
> 
> It dosn't have to be in Hebrew.
> 
> I am at work every day from 08:00 to 17:00 and my wife is at home. As you
> know, we can't use Orange's SMS sending page - dosn't work with Firefox...
> 
> Any other solution? She is tired of SMSing from the phone, so she calls me
> voice...
> 
> Thanks!
> 
> -- 

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Good maps site for FF

2006-09-29 Thread Dan Kenigsberg
.. and just like most of the sites discussed back then, it is a front-end to
atlasct's Flash engine (but with considerably larger window)

On Fri, Sep 29, 2006 at 05:33:43PM +1000, Amos Shapira wrote:
> 
>Hi,
>It's  been  discussed  a long time ago but now I found a pointer to an
>excellent free maps site which works for me on FF 2 on Debian:
>[1]http://www.mapot.com/
>    HTH,
>--Amos

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: What's a decent encryption tool for encrypting files?

2006-09-25 Thread Dan Kenigsberg
On Mon, Sep 25, 2006 at 02:03:24PM -0700, [EMAIL PROTECTED] wrote:
> i don't require keys at all. all i want is a program that encrypts my files,
> and un-encrypts them only when i give my secret password. i'd rather not 
> have
> keys, because then i can't decrypt on a different machine, without copying
> over the keys as well. perhaps this isn't possible - perhaps all good
> encryption programs require keys to do good encryption.

Could that be what you are looking for? From enc(1ssl):

   Encrypt a file using triple DES in CBC mode using a prompted password:

openssl des3 -salt -in file.txt -out file.des3

   Decrypt a file using a supplied password:

openssl des3 -d -salt -in file.des3 -out file.txt -k mypassword

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: hebrew under latex with debian

2006-08-29 Thread Dan Kenigsberg
I am unfamiliar with debian, but if you have an up-to-date tetex, you don't
actually need ivritex to typeset hebrew - most of Tzafrir changes are already
included into CTAN's babel.

Check the version of hebrew.ldf: if it is 2004/02/20 v2.3h you're fine.

Then, you should only convince latex to use the culmus fonts. For this, you can
try my (undebianizd) package
http://ivrix.org.il/redhat/tetex-fonts-hebrew-0.1.tar.gz

On Wed, Aug 30, 2006 at 03:38:57AM +0300, Micha Feigin wrote:
> I seem to recall seeing on this list that latex now uses true type fonts by
> default, at least for hebrew. I don't see, to see this on my latex + ivritex
> under debian.
> 
> Is this true, is debian ivritex out of date or should I switch to texlive
> (although the hebrew package seems to state type1 fonts)
 
-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: strange error message

2006-07-31 Thread Dan Kenigsberg
 From one reason or another I got your mail only through the list, which
filtered out your doc example. You may try to send it to me offlist again.
Independently, you may try upgrading to bidiv 1.5. As I told you, 1.4 had a bug
that may cause the memory management error you see.

On Mon, Jul 31, 2006 at 06:05:59PM +0300, Avraham Rosenberg wrote:
> 
> -- Binary/unsupported file stripped by Listar --
> -- Type: application/msword
> 


-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: strange error message

2006-07-31 Thread Dan Kenigsberg
I have a vague memory that bidiv 1.4 had a buffer overflow bug. Which version
are you using? Do you have a specific doc where you reproduce the error? Could
you share it with us? What is your locale?

On Mon, Jul 31, 2006 at 07:41:02AM +0300, Avraham Rosenberg wrote:
> Hi,
> I use the following script to read simple Hebrew doc documents:
> #!/bin/sh
> /usr/bin/antiword -w 70 $2 -m 8859-8.txt $1 | /usr/bin/bidiv  -j -w 70 | sed 
> 's/[ ][  ]*$//' |  sed -e :a -e 's/^.\{1,69\}$/ &/;ta'
> 
> Lately (maybe this has to do with the move to a 64-bit system) I
> get the following error message (usually after the job is
> properly done):
> *** glibc detected *** free(): invalid next size (fast): 0x005024a0 
> ***
> 
> Trying to paste the error message (or parts of it) into google
> linux search,was fruitless.
> Any ideas ?
> 
> PS The sed command got clobbered in the pasting process. It just
> says: delete any number of blancs and/or tabs at the end of the
> line.
> 
> Thanks, Avraham

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Israel map site that work with firefox?

2006-07-25 Thread Dan Kenigsberg
Try the very good http://www.atlasct.com/israel/site/main.asp
(flash required)

On Tue, Jul 25, 2006 at 01:13:38PM +0300, Kfir Lavi wrote:
> Hi,
> I have problems viewing map sites in Israel like www.emap.co.il.
> Is there a map site that works well with firefox?
> 

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Results of search for list of Fedora Core packages

2006-07-24 Thread Dan Kenigsberg
On Mon, Jul 24, 2006 at 02:48:13PM +0300, Omer Zak wrote:
> I faced the need to find a list of packages of Fedora Core.



> http://fedoraproject.org/extras/5/i386/repodata/

Do note that this is a list of Fedora Extra, not of Fedora Core (but I guess you
where indeed looking for the fancy stuff residing in Extra)

BTW, the packages themselves are also available at
http://download.fedora.redhat.com/pub/fedora/linux/core/5/i386/os/Fedora/RPMS/
(for Core package)
http://download.fedora.redhat.com/pub/fedora/linux/extras/5/i386/
(for Extra packages)
and various mirrors worldwide.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Hallelujah! Hspell 1.0 is released.

2006-05-16 Thread Dan Kenigsberg
We are proud to present a new version of Hspell, the free Hebrew spell-checker.

As usual, you can find the new release in the project's homepage, at:
http://ivrix.org.il/projects/spell-checker/

In this release, as many as 1,500 missing base words were added, bringing
Hspell one step closer to full coverage of the modern Hebrew language.
Note that one of these 1,500 is none other than the word Hallelujah.

Not only people who use Hspell directly will benefit from this release.
Recently, more and more applications have been adopting Hspell for Hebrew
spell checking. Their users use Hspell - often without even knowing it.
Aspell, OpenOffice, Mozilla, and recently even Google's GMail, all use
Hspell's word list for their Hebrew spell checking. Soon, users of these
and other applications will also be able to enjoy the improved vocabulary
of Hspell 1.0.

The designation "1.0" does not mean that we think that Hspell is complete.
We do, however, think that at this point we can confidently say that Hspell
is mature, with a vocabulary large enough to satisfy most users. In fact,
Hspell's vocabulary is comparable in size (22589 base words) to some of the
printed Hebrew dictionaries.
Hspell's interfaces (pipe interface, C API, and word lists created for Aspell)
have also proven themselves useful over the last several releases, even if
they still leave a lot of room for future improvement.

We hope that you find Hspell as useful as we have had fun writing it,

Nadav and Dan.

Lag BaOmer, 5766

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Helping mirror.[hamakor,iglu,isoc].org.il

2006-04-29 Thread Dan Kenigsberg
For Fedora, how about:

Add the line
baseurl=http://mirror.iglu.org.il/pub/fedora/core/updates/$releasever/$basearch/

into the file
/etc/yum.repos.d/fedora-updates.repo

and do
yum check-update

On Sat, Apr 29, 2006 at 02:17:52PM +0300, Lior Kaplan wrote:
> Hello List,
> 
> I need help from people who use different distributions to collect the
> right settings for configuring the mirror in each distribution.
> 
> Distributions & people in charge:
> Debian - Lior Kaplan
> Fedora - ?
> Gentoo - ?
> Mandriva - ?
> OpenSUSE - ?
> Ubuntu - ?
> 
> Existing settings are at:
> http://mirror.hamakor.org.il/#configuration
> http://mirror.iglu.org.il/#configuration
 

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: please enlighten me

2006-03-25 Thread Dan Kenigsberg
 
> Jews, specifically of the Israeli type (Canadians are OK and south 
> americans I can deal with), are - generally - very stupid. (I'm talking 
> about the populace in general, and many of their decision makers - when 
> examined on a case to case basis, a surprisingly large number of them 
> are very well versed).

It might be so cool and hype to be anti-american, but I really hate this type of
bigotry on a mailing list I subscribe to.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Adobe Reader vs. Ghostscript

2006-02-01 Thread Dan Kenigsberg
> some kind of smoothing that Ghostscript doesn't.  Does anyone know a 
> setting or something to make Ghostscript also do this or is it just not 
> implemented?

Does 
gv --antialias 
make it better?


=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



fonts-hebrew-fancy, taarich available from Fedora Extras

2005-11-27 Thread Dan Kenigsberg
Hi,

You may be pleased to know that in addition to hspell, now Maxim Iorsh's
fonts-hebrew-fancy and Zvi Har'El's taarich are available as RPMs from Fedora
Extras.

If you have /etc/yum.repos.d/fedora-extras.repo enabled, all you need is to
yum install fonts-hebrew-fancy taarich

Please inform me if you have problems with the packages. If you think of another
Hebrew-related software you would like me to package let me know. I am trying to
add bidiv https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=173683 but for
some reason it does not generate much interest among the Fedora people.

Dan.

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: [off topic] A new project - automatic translation

2005-11-14 Thread Dan Kenigsberg
On Mon, Nov 14, 2005 at 01:46:03PM +0200, Offer Kaye wrote:
> On 11/14/05, Dan Kenigsberg wrote:
> > that is as bad Google or babelfish. I would LOVE to have a free tool to 
> > make fun
> > about. Now we have nothing.
> 
> Enter the Perl module Lingua::Translate -
> Go ahead, make fun of it :)

Since you are asking so nicely, I'll simply quote from its man page:

Locale::Translate translates text from one written
language to another.  Currently this is implemented by
contacting Babelfish (http://babelfish.altavista.com/), so
see there for the language pairs that are supported.
Babelfish uses SysTran (http://www.systran.org/) to perform

Meaning it is not interestingly free (or extremely interesting at all), and has
no Hebrew support (but has Arabic!).

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: [off topic] A new project - automatic translation

2005-11-14 Thread Dan Kenigsberg
Uri,

I am not sure that you grasp the enormity of the task at hand. However, I don't
want to discourage you. Unlike others, I would appreciate a stupid translator
that replaces a word by a word. It would be wonderful to have a free software
that is as bad Google or babelfish. I would LOVE to have a free too to make fun
about. Now we have nothing.

So go on and get to work. Note that if I were you, I'd set myself a more
realistic goals first. In a way, I am you: when we set out to write hspell we
had dreams of a linguistic future. I hope that the huge list that we collected,
of almost all modern Hebrew words, will be useful to you.

> I want to have both an algorithm and a database of languages (words,
> phrases etc) that will improve over time.  That is, start with a simple
> algorithm, and feed data into it.  The data will be sources and
> translations in any language.  When there is enough data for a given

The database you describe here is not dissimilar to WordNet, and I am told that
few list members are trying to extend the Hebrew WordNet. Maybe you can join
them.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: [S-OP]About HSpell

2005-10-19 Thread Dan Kenigsberg
Of course hspell supports piping. Just try. It even has an ispell-like pipe
interface for programs, which is used by lyx, geresh, and the little demo script
wassist.cs.technion.ac.il/~danken/cgi-bin/hspell.color.cgi

That cgi is written in perl. It pipes the user text into another perl script
that uses hspell to color misspelled words in red. I can let you peek into the
scripts off list, if you want. I have no shred of knowledge in php, but I guess
everything here can be translated to it.

On Tue, Oct 18, 2005 at 11:23:21PM +0200, O.K wrote:
> Thanks for the suggestion, but I was looking for something more elegant as 
> hspell requires file as input. It's not support piping. Or maybe I am wrong 
> ?

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Fedora contribution mechanism

2005-09-19 Thread Dan Kenigsberg
Hi List,

I thought it would be nice to have Hspell added to Fedora Core/Extra. In order
to contribute the software, I have to become a contributor. And for that, I need
to find a Fedora sponsor who would sponsor me. 

Is there a Fedora sponsor in the audience?

Is there someone whose nephew knows a Fedora sponsor in the audience?

Since in Fedora's eyes I am a first-timer packager, the sponsor is expected to
review the Hspell package too. I've made a formal request in
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=168624
but it seems too similar to a bug falling in a distant forest. Approaching this
list seems more sensible.

Thanks,

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: sendsms Version 3.11, [April 12, 2005]

2005-08-21 Thread Dan Kenigsberg
> But, did anyone try see what's wrong? Did they change their site, or did the
> site go off-line? If it's the latter, did anyone try to complain to them?

I did - Orange added the nice feature of per-SMS password. Before sending your
SMS they send a one-time password to your cellphone, and after you type it in
back to the site, they agree to send your SMS to the required destination.

It seems as if their system allows you to send as many of these meaningless
passwords to yourslef as you like. Maybe next version of SendSMS should utilize
this via Morse-coding your message?

When I called to complain about this change, they told me it was initiated
because Orange site now allows to send SMSs to different providers, which costs
much more (and involves actual money taken given by Orange to the other
provider). They promissed that the current  annoyance will be simplified, and
that the per-SMS password would be required only when accessing foreign
providers. They did not give any hint regarding the date of this simplification.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: OT: license problem with culmus fonts

2005-08-07 Thread Dan Kenigsberg
Eli (and others),

I think it is slightly inappropriate to speak the way you speak about the
"author of culmus". Maxim Iorsh is not some kind of an absentee who would never
read this list and cannot be approached.

If you have a problem with the license of his fonts, contact him directly and
request him to add the fonts exception to the GPL. I hope he agrees, since the
current license might be too restrictive.

Note that even Maxim agrees, it might not be easy at all - the Latin glyphs in
Culmus are taken from the GPL-licensed URW fonts. 

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



monitor a samba print server from Linux

2005-07-28 Thread Dan Kenigsberg
Hi List,

Is there an lpq/lprm-like utility that lets me monitor/cancel print jobs that
were sent to a samba (windows) print server?

In the (predominantly windows) network I use, I can connect to a printer
using smbclient, and even send documents to print. Yet I fail to see the print
queue (smbclient's queue command always returns silently).

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: need script to find "alien" files

2005-07-27 Thread Dan Kenigsberg
How about
find /usr -print0 | xargs -0 rpm -qf |grep 'not owned'
and some sed afterwards?

On Wed, Jul 27, 2005 at 05:12:53PM +0300, Michael Green wrote:
> I'm looking for script that will traverse filesystem of an RPM-based
> distro and find files that do not belong to any RPM.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Automatic Keyboard switching languages in Fedora 4

2005-06-26 Thread Dan Kenigsberg
Am I imagining things?

I upgraded FC1 to FC4, and without any reconfiguration on my part, 
the keyboard layout became window-specific instead of server-wide.
This means that, finally, when I chat in Hebrew in one window and write in
English in another window, I don't need to toggle the keyboard mode.

I remember that years ago Nadav Har'El fantasized about such an option. On my
Gnome it has been realized.

Anyone care to elaborate how it was done?

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Thanks

2005-06-10 Thread Dan Kenigsberg
>\begin{otherlanguage}{hebrew}, to start writing in Hebrew, which 
>surprized me. I had understood that the language first listed
>as option in the babel package (in that case Hebrew) is the
>default one. Am I again relying on obsolete documentation.

The *last* listed language is the default one. Try and see.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: How do you remotley manage a Win2k3 standalone box from linux ?

2005-05-20 Thread Dan Kenigsberg
Try

http://www.rdesktop.org/

It worked nice for me.

On Fri, May 20, 2005 at 05:36:24PM +0300, Maxim Vexler wrote> 
> I do have remote Admin access to the server.
> 

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: nezeq overcharge for internet calls

2005-05-20 Thread Dan Kenigsberg
Few years ago, Bezeq was forced by the Knesset to give special rates to people
who make few calls per month. This came after Bezeq raised the basic phone line
charge and lowered the per-second charge - a step that is good for large
companies and rich teenagers and bad for poor old people with few relatives.

Anyway, according to fine print, the few-calls discount is void if you buy ADSL.
The logic is that if you do that, you must be rich and not worthy of the
discount. I have no idea why, but Bezeq's salespersons forget to emphasize this
fact when they sell you faster Internet connection.

I'm not sure this is your case; Call Bezeq to make sure.

On Fri, May 20, 2005 at 09:11:33AM +0300, Peter wrote:
> I have a problem. I switched from modem to dsl and nezeq sent me the 

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: HTML to PDF

2005-05-04 Thread Dan Kenigsberg
On Tue, May 03, 2005 at 06:19:02PM +, Oleg Goldshmidt wrote:
> 
> http://www.mozilla.org/unix/remote.html
> 

Lovely. From there one can easily find the code

if (lastArgument.EqualsIgnoreCase("postscript", PR_TRUE)) {
 argument.Truncate(index);
 rv = NS_ERROR_NOT_IMPLEMENTED;
}

Does it stem of lack of resources (read: laziness) or principle?

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: HTML to PDF

2005-05-02 Thread Dan Kenigsberg
On Mon, May 02, 2005 at 06:13:19PM +, Oleg Goldshmidt wrote:
> 
> > Anyone have an idea why this nice -remote option was not ported
> > completely into mozilla? Yet another "priciple"?
> 
> I don't know what you mean by "completely", but 
> 
> mozilla -remote "openURL(http://www.google.com)"
> 
> works just fine for me with 
> 
> Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.6) Gecko/20050323
> Red Hat Enterprise Linux WS release 3 (Taroon Update 3)
> 
> I don't recall it *ever* being broken...
> 

More importantly, does 

mozilla -remote "saveAS(google.ps,PostScript)"

work? Because this key step fails here (FC1), and if my memory does not fail me,
this is what failed almost 3 years ago when I remarked about the incompleteness
of -remote.

Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6) Gecko/20040124
Fedora Core release 1 (Yarrow)


-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: IBM desktops screaming under Linux

2005-04-20 Thread Dan Kenigsberg
Gosh, it is a small world.
(Or should I say, a small Linux community?)

It is amazing what happens to service calls. I looked up at your posted message
and saw something about emacs in mail mode. I have NO idea how come this piece
of information was generated. The Technion guy with these problems almost never
uses emacs! How do you say "Broken Telephone" in English??

Let us now wait and see if and how the alleged overheating problem is solved.

Thanks, Ira, and also to the person who gave me the same diagnose privately.

> sounds to me like:
> 
> A. it has something to do with an overheating CPU because of faulty CPU
> fan coupling
> 
> B. very suspiciously similar to the ticket I got and posted two days
> ago, taken care by a woman named Dita. If that is the case, and I can
> put 2+2+2 together, then we may have a winner.
> 

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



IBM desktops screaming under Linux

2005-04-19 Thread Dan Kenigsberg
Dear List,

I wonder if anyone heard of a similar problem. Somewhere there exist two IBM
desktop machines, model 8189-7cg to be exact, running RedHat 9 (2.4.20 kernel)
and Fedora Core 1 (2.4.22-1.2197 kernel). Once in a not-too-long while, they
start lagging, executing processes very slowly, and then shrieking loudly for
long minutes with their motherboard beep. The only thing that stops this
annoyance is a hard reset.

This never happened when they run Windows (which they do rather seldom, so I am
not completely certain about this point).

Do you have an idea where to look? What could cause this kind of behavior?
(P.S. I know this is a tough request, but please try to refrain of mentioning
the age per se of the kernels.)

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: odd behaviour of transparent https proxy

2005-03-20 Thread Dan Kenigsberg
Shachar,

Thank you for your detailed suggestions, however I can no longer reproduce the
problem; someone probably corrected it over the weekend. I'll continue the hunt
when the problem reappears.

> >
> Seems like an ack storm, but I really can't decipher tcpdump's analysis. 
> Can you send me a snapshot in output mode (tcpdump -w file -s 1500)?
> 
> Also, do traceroute to the destination you mention. Then (assuming you 
> have hping installed) do "hping dst -p 443 -S -L 0 -T -M 1234567" 
> (replace dst with the right IP address). Hit ^Z every time it gets 
> stuck, and let it run until you start seeing "SA" rather than "TTL 
> expired". This should let us see whether it's a transparent proxy 
> somewhere along the road. Do the same replacing 443 with 80.
> 
>  Shachar

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



odd behaviour of transparent https proxy

2005-03-17 Thread Dan Kenigsberg
Few days ago someone (probably) did something to the transparent https proxy
that buffers me from the world.

Since then, I cannot access https servers. It is my problem, and not the
proxy maintainers', because Windows machines seems to be immune to this.

I don't really know where to start looking for an answer. All I know is that
telneting to an https server causes a flood of ACKs right after the connection
is established. I'd love hearing some ideas.

Using FC1, kernel 2.4.22. The beginning of an extremely boring tcpdump follows.

19:27:00.568656 danken-lap.32848 > server.https: S 2458091977:2458091977(0) win 
5840  (DF) [tos 0x10] 
19:27:00.587290 server.https > danken-lap.32848: S 2237799451:2237799451(0) ack 
2458091978 win 16384 (DF)
19:27:00.587314 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.589938 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)
19:27:00.589953 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.592834 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)
19:27:00.592844 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.596724 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)
19:27:00.596733 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.599182 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)
19:27:00.599192 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.601536 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)
19:27:00.601545 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.603536 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)
19:27:00.603547 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.605561 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)
19:27:00.605571 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.607912 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)
19:27:00.607922 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.609851 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)
19:27:00.609860 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.612200 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)
19:27:00.612210 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.614465 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)
19:27:00.614474 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.616581 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)
19:27:00.616590 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.620711 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)
19:27:00.620720 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.624248 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)
19:27:00.624257 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.627768 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)
19:27:00.627778 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.631333 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)
19:27:00.631343 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.634099 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)
19:27:00.634108 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.636764 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)
19:27:00.636774 danken-lap.32848 > server.https: . ack 1 win 5840 (DF) [tos 
0x10] 
19:27:00.638857 server.https > danken-lap.32848: . ack 1 win 16384 
 (DF)


-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Hebrew Langauge pack in ubuntu

2005-01-27 Thread Dan Kenigsberg
fribidi, Nadav Har'El's bidiv, hspell for OO with *english* UI, 
IvriTeX, hdate, taarich.

In short, anything that is listed on http://ivrix.org.il/redhat/fc1.html .

 
> Ely Levy wrote:
> 
> >Hey,
> >Ubuntu started making an hebrew language pack,
> >it already has things like openoffice-he and would mozilla-bidi-ui colmus
> >and hspell.
> >
> >My question is are there other programs people would like to see there?
> >Which are il or he specific, they can also be things which are not yet
> >packaged. (ie: israeli radio play list which someone made?).
> >

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Bank HaPoalim vs. Mozilla update

2005-01-21 Thread Dan Kenigsberg
On Fri, Jan 21, 2005 at 01:28:59PM +0200, Ilya Konstantinov wrote:
> I especially mentioned Mozilla 1.8 (not yet released). Firefox 1.0 did 
> not include the fix for bug 246700 yet. Firefox 1.1 will include the 
> fix. With this fix, the menus will always be reversed.
> 
> I know the reason why they are reversed in the first place (no, it's not 
> an issue of their site being Visual). 

I'm intrigued. Would you share this knowledge with us?

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



fedora core support plan

2004-10-24 Thread Dan Kenigsberg
Not long ago, a friend told me that the Fedora project stopped releasing updates
for FC1, and that I should redirect my yum configuration to fedoralegacy.org.

Is that true? Why is this headache required? Is it RedHat making the life of
freeriders harder? Where can I see Fedora's support plan?

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: how to set the initial value for domainname

2004-10-21 Thread Dan Kenigsberg
> btw,
> i can't understand the connection between openoffice startup and the
> availability of a nisdomain. 

This is a very good question indeed. I consider this an OpenOffice bug: on
startup it queries my DNS for the IP of 'mycomputer.(none)' for some reason.

(FC1, openoffice.org-1.1.0-16)

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



how to set the initial value for domainname

2004-10-21 Thread Dan Kenigsberg
Hi,

Somehow I forgot, and cannot find out again, how I should set domainname on
system startup (I have fedora 1). My current value for domainname is "(none)",
which slows my OpenOffice's startup horrendously.

Editing rc.local is always an option, but I'm looking for the proper way to do
it.

P.S. Setting DOMAINNAME in /etc/sysconfig/network is ignored.

--
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



mirror.israel.net fedora 1 updates not up-to-date

2004-08-28 Thread Dan Kenigsberg
I noticed that actcom's mirror of Fedora 1 updates has not been in the past 3
weeks. I am not an actcom customer, which means they owe me absolutly nothing,
but also means that I don't know how to notify them of this problem.

Would someone volunteer to notify whoever is in charge in actcom?

Can anyone recommend of a local, reliable FC1-updates mirror?

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: encryption in mozilla's password manager file

2004-08-18 Thread Dan Kenigsberg
This lovely hack solves one of the problems.

And with slight modification - also the other one: all I should do is copy the
ciphertext of the forgotten password to the ad-hoc 127.0.0.1 site, and then, see
what plaintext is received there.

Very simple. Far from elegant. Cool.

On Wed, Aug 18, 2004 at 05:08:26PM +0300, Orr Dunkelman wrote:
> I found out that mozilla encrypts all passwords in the same way.
> 
> This means, that you can encrypt it for another site ;)
> 
> Create your own website with form.
> set the correct fields...
> save your password...
> and change the site that owns the password...
> 
> 
> 
> On Wed, 18 Aug 2004, Dan Kenigsberg wrote:
> 
> > A certain site, whose name I would not mention, tries to be smarter than me and
> > disallows storing its password in my local, well-protected, mozilla password
> > manager.
> >
> > I saw that I can enter the password to the local database at
> > mozilla/default/x/.s but my problem is that the enries there are
> > encrypted. How can I encrypt my favourite password to fit there?
> > How can I decrypt an other, long-forgotten password, which is still stored
> > there?
> >
> > I guess I could look at the mozilla code to see how they do it, but I'd
> > appreciate if someone save me this by saying something like
> > echo 1qQTn4PUPa8BucF3FVpfA32/0f0b5GGF | openssl des3 -d -a -K AA -iv 0
> > or point me to a fine manual.
> >
> > Thanks,
> >
> >
> 
> -- 
> Orr Dunkelman,
> [EMAIL PROTECTED]
> 
> "Any human thing supposed to be complete, must for that reason infallibly
> be faulty" -- Herman Melville, Moby Dick.
> 
> Spammers: http://vipe.technion.ac.il/~orrd/spam.html
> GPG fingerprint: C2D5 C6D6 9A24 9A95 C5B3  2023 6CAB 4A7C B73F D0AA
> (This key will never sign Emails, only other PGP keys.)

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



encryption in mozilla's password manager file

2004-08-18 Thread Dan Kenigsberg
A certain site, whose name I would not mention, tries to be smarter than me and
disallows storing its password in my local, well-protected, mozilla password
manager.

I saw that I can enter the password to the local database at
mozilla/default/x/.s but my problem is that the enries there are
encrypted. How can I encrypt my favourite password to fit there?
How can I decrypt an other, long-forgotten password, which is still stored
there?

I guess I could look at the mozilla code to see how they do it, but I'd
appreciate if someone save me this by saying something like
echo 1qQTn4PUPa8BucF3FVpfA32/0f0b5GGF | openssl des3 -d -a -K AA -iv 0
or point me to a fine manual.

Thanks,

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



true link of Hspell's package for Mozilla

2004-08-10 Thread Dan Kenigsberg
Damn, if you want to use it, better try
http://ivrix.org.il/redhat/spell-he-IL.xpi

On Tue, Aug 10, 2004 at 07:57:01PM +0300, Dan Kenigsberg wrote:
> Hi,
> 
> A few weeks ago, I packaged the hebrew dictionary of Hspell in the format
> expected by Mozilla's composer, and I'm pretty happy with it. (You can install
> http://ivrix.org.il/spell-he-IL.xpi (as root...) to see if you'd be happy too)
> 
> Anyway, I wanted to contribute this package to the languages in
>   http://dictionaries.mozdev.org/installation.html
> but received no comment from dictionaries AT mozdev.org. Does anyone here
> have contacts with mozilla people who can add Hebrew to that esteemed page?
> 
> -- 
> Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901
> 
> Ivrix-discuss list. See http://ivrix.org.il.
> To unsubscribe, please send mail to [EMAIL PROTECTED] with
> only the following line in the message body (NOT SUBJECT!): unsubscribe

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



How to contribute Hspell to Mozilla?

2004-08-10 Thread Dan Kenigsberg
Hi,

A few weeks ago, I packaged the hebrew dictionary of Hspell in the format
expected by Mozilla's composer, and I'm pretty happy with it. (You can install
http://ivrix.org.il/spell-he-IL.xpi (as root...) to see if you'd be happy too)

Anyway, I wanted to contribute this package to the languages in
http://dictionaries.mozdev.org/installation.html
but received no comment from dictionaries AT mozdev.org. Does anyone here
have contacts with mozilla people who can add Hebrew to that esteemed page?

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: [Ann] Hspell for English OpenOffice

2004-07-13 Thread Dan Kenigsberg
> > http://ivrix.org.il/redhat/fc1/ooo-hspell-0.8-1.i386.rpm
> > 
> > You may even wish to set your up2date to this directory, so that you'd be
> > informed whenever hspell and friends are updated.
> > 
> 
> I tried alien on that to install on debian and that didn't achieve
> anything. I also tried to original package and got the following error
> trying to run pkgchk:
> 
> [EMAIL PROTECTED] /usr/lib/openoffice/program/pkgchk -s
> warning: registering 
> vnd.sun.star.expand:$UNO_SHARED_PACKAGES_CACHE/uno_packages/libhspell645li.so into 
> registry file:///usr/lib/openoffice/share/uno_packages/cache/services.rdb: failed! 
> (cannot register implementation: loading component library failed: 
> file:///usr/lib/openoffice/program/../share/uno_packages/cache/uno_packages/libhspell645li.so)!
> 
> Looking in the options I just get the standard dictionaries, can't see
> the new ones (first time just lost all of them)
> 
> Any ideas?
> 

I don't really have any idea - I never saw these warnings myself.

Would you explain what do you mean by "standard dictionaries"?
What's the content of your /usr/lib/openoffice/share/{dict/ooo/,uno_packages} ?

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: HTTP body capture with LiveHTTP Headers ?

2004-07-12 Thread Dan Kenigsberg
> Install eclipse 2.x and the solex plugin ( http://solex.sourceforge.net/ ).
> It lets you capture the entire session, headers & bodies. It also lets 
> you replay it.
> It works by serving as a proxy for the browser (whatever browser you use).

I believe that a proxy cannot see what's going on inside an HTTPS session, and
therefore such tool is of lesser value for me. But thank you.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



HTTP body capture with LiveHTTP Headers ?

2004-07-12 Thread Dan Kenigsberg
I've been using http://livehttpheaders.mozdev.org/ for quite awhile now,
whenever I needed to understand a naughty web site.

I know that the name of the package suggests otherwise, but does anyone here
knows if I can capture the bodies of HTTP requests/responses too? This would be
even more helpful when it's HTTPS.

I know that I have the code, and could change it myself in principle, but the
relationship of me and chrome is a series of failures. :(

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Free Redhat 9 updates ?

2004-07-12 Thread Dan Kenigsberg
Assume that I would like to continue my status of a free Redhat rider, and that
I cannot convert to Fedora, yet I would like to receive frequent, reliable,
security updates.

Does anyone have recommendations for a specific RPM repository that allows for
that?

I managed to dig www.whiteboxlinux.org out of rusting memory. Is it good for
my purposes? Are there better ones?

Thank!

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: png to pdf

2004-07-11 Thread Dan Kenigsberg
Try ImageMagick's convert.

On Sun, Jul 11, 2004 at 02:03:59PM +0300, Kfir Lavi wrote:
> Hi,
> i have series of PNG images, and i want to generate from them a PDF 
> file. How do i do that?
> (I can convert the PNG to other image formats)
> 
> tnx
> kfir
> 
> =
> To unsubscribe, send mail to [EMAIL PROTECTED] with
> the word "unsubscribe" in the message body, e.g., run the command
> echo unsubscribe | mail [EMAIL PROTECTED]

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



[Ann] Hspell for English OpenOffice

2004-07-04 Thread Dan Kenigsberg
Recently, Alan Yaniger of TkOS announced an OpenOffice module that allows
Hebrew spell-checking in any non-Hebrew OpenOffice.

See http://www.openoffice.org.il/ for further details

Since this mode of operation is what I personally like, I sat down and prepared
an RPM for that package. Unlike the TkOS module, my RPM uses the up-to-date
version of hspell, which is 0.8. Sadly, it needs to install a second (!)
uncompressed (!!) set of the dictionary files, even if you already have hspell
installed.

If you too have an English OpenOffice installed, you can already read and write
Hebrew document. But if you are willing to spell-check your Hebrew, you are
welcome to download it from

http://ivrix.org.il/redhat/fc1/ooo-hspell-0.8-1.i386.rpm

You may even wish to set your up2date to this directory, so that you'd be
informed whenever hspell and friends are updated.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Skype for Linux

2004-06-21 Thread Dan Kenigsberg
Here, on my FC1, it cries:

skype: relocation error: skype: undefined symbol: _ZN7QActionC1EP7QObjectPKc

and returns 127.

Any idea why?

On Mon, Jun 21, 2004 at 07:29:08PM +, Diego Iastrubni wrote:
> Here it works. 
> 
> I am available as "elcuco" or "cuco". Funny I cannot find my self.

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Competitor to VMWare?

2004-05-27 Thread Dan Kenigsberg
Layman's question:

would I be able to run my other-partition's WinXP with it?

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: Thinkpad modem does not link with FC1 2.4.22-1.2188.nptl

2004-05-23 Thread Dan Kenigsberg
On Sat, May 22, 2004 at 12:19:17AM +0300, Muli Ben-Yehuda wrote:
> It does not find the modem device. Knowing why is practically
> impossible without the source or disassembly, sorry... 

oooh, so THAT's what wrong with closed-source!

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Thinkpad modem does not link with FC1 2.4.22-1.2188.nptl

2004-05-21 Thread Dan Kenigsberg
I was using SmartLink's (non free) software modem with my ThinkPad R40, running
Fedora's kernel 2.4.22-1.2174.nptl.

Since that kernel had some local security issues, I decided to upgrade to
2.4.22-1.2188.nptl. To my sadness, I learnt that even though the SmartLink code
compiles with the newer version, it for some reason does not link. Or it may be
some configuration error on my part.

Could anyone hep me read these logs? the first is the failed one, the second is
the working old kernel.


May 21 12:44:44 danken-lap ifup-ppp: pppd started for technion on /dev/modem at 460800
May 21 12:44:44 danken-lap pppd[4121]: pppd 2.4.1 started by root, uid 0
May 21 12:44:44 danken-lap kernel: slmdm: version 2.7.10 Feb  4 2003 15:18:20 (Smart 
Link Ltd.).
May 21 12:44:44 danken-lap kernel: slmdm: country set is 0xb5 (USA).
May 21 12:44:44 danken-lap kernel: Smart Link AMRMO modem.
May 21 12:44:44 danken-lap insmod: Warning: loading 
/lib/modules/2.4.22-1.2188.nptl/misc/slmdm.o will taint the kernel: non-GPL license - 
Smart Link Ltd.
May 21 12:44:44 danken-lap insmod:   See http://www.tux.org/lkml/#export-tainted for 
information about tainted modules
May 21 12:44:44 danken-lap insmod: Module slmdm loaded, with warnings
May 21 12:44:44 danken-lap insmod: Warning: loading 
/lib/modules/2.4.22-1.2188.nptl/misc/slamrmo.o will taint the kernel: non-GPL license 
- Smart Link Ltd.
May 21 12:44:44 danken-lap insmod: /lib/modules/2.4.22-1.2188.nptl/misc/slamrmo.o: 
init_module: No such device
May 21 12:44:44 danken-lap insmod: Hint: insmod errors can be caused by incorrect 
module parameters, including invalid IO or IRQ parameters.   You may find more 
information in syslog or the output from dmesg
May 21 12:44:44 danken-lap insmod: /lib/modules/2.4.22-1.2188.nptl/misc/slamrmo.o: 
insmod char-major-212 failed
May 21 12:44:44 danken-lap pppd[4121]: Failed to open /dev/modem: No such device
May 21 12:44:44 danken-lap pppd[4121]: Exit.





May 21 12:56:05 danken-lap ifup-ppp: pppd started for technion on /dev/modem at 460800
May 21 12:56:05 danken-lap kernel: CSLIP: code copyright 1989 Regents of the 
University of California
May 21 12:56:05 danken-lap kernel: PPP generic driver version 2.4.2
May 21 12:56:05 danken-lap pppd[4052]: pppd 2.4.1 started by root, uid 0
May 21 12:56:05 danken-lap kernel: slmdm: version 2.7.10 Feb  4 2003 15:18:20 (Smart 
Link Ltd.).
May 21 12:56:05 danken-lap kernel: slmdm: country set is 0xb5 (USA).
May 21 12:56:05 danken-lap kernel: Smart Link AMRMO modem.
May 21 12:56:05 danken-lap kernel: amrmo: probe 8086:24c6 Intel Corp. 82801DB AC'97 
Modem Controller : ICH card...
May 21 12:56:05 danken-lap kernel: PCI: Found IRQ 11 for device 00:1f.6
May 21 12:56:05 danken-lap kernel: PCI: Sharing IRQ 11 with 00:1f.3
May 21 12:56:05 danken-lap kernel: PCI: Sharing IRQ 11 with 00:1f.5
May 21 12:56:05 danken-lap insmod: Warning: loading 
/lib/modules/2.4.22-1.2174.nptl/misc/slmdm.o will taint the kernel: non-GPL license - 
Smart Link Ltd.
May 21 12:56:05 danken-lap insmod:   See http://www.tux.org/lkml/#export-tainted for 
information about tainted modules
May 21 12:56:05 danken-lap insmod: Module slmdm loaded, with warnings
May 21 12:56:05 danken-lap insmod: Warning: loading 
/lib/modules/2.4.22-1.2174.nptl/misc/slamrmo.o will taint the kernel: non-GPL license 
- Smart Link Ltd.
May 21 12:56:05 danken-lap insmod: Module slamrmo loaded, with warnings
May 21 12:56:05 danken-lap kernel: This driver is not compatible with the installed 
modem codec.
May 21 12:56:05 danken-lap kernel: Please contact your modem provider for support.


-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



Re: hebrewrc

2004-04-29 Thread Dan Kenigsberg
> > 
> > The only file that seems to be a problem is etc/X11/Xkbmap which I am

Speaking of this, it seems that the normal Fedora 1 startup does not load
/etc/X11/Xkbmap, and so is ~/.Xkbmap.

does anyone know where should I set my favorite keyboard mapping in Fedora?

-- 
Dan Kenigsberghttp://www.cs.technion.ac.il/~dankenICQ 162180901

=
To unsubscribe, send mail to [EMAIL PROTECTED] with
the word "unsubscribe" in the message body, e.g., run the command
echo unsubscribe | mail [EMAIL PROTECTED]



  1   2   >